home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kolekce / d6 / rxlibsetup.exe / {app} / units / RXGCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2002-02-19  |  1.3 KB  |  49 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {         Delphi VCL Extensions (RX)                    }
  4. {                                                       }
  5. {         Copyright (c) 2001,2002 SGB Software          }
  6. {         Copyright (c) 1997, 1998 Fedor Koshevnikov,   }
  7. {                        Igor Pavluk and Serge Korolev  }
  8. {                                                       }
  9. {*******************************************************}
  10.  
  11.  
  12. unit RxGConst;
  13.  
  14. { RX graphic support constants }
  15. {
  16.   Reserved diapasone
  17.   from MaxExtStrID - 200
  18.   to   MaxExtStrID - 230
  19. }
  20.  
  21. interface
  22.  
  23. const
  24. { The minimal VCL's used string ID is 61440. The custom IDs must be
  25.   less that above. }
  26.   MaxExtStrID = 61300;
  27.  
  28. { RxGIF }
  29.  
  30. const
  31.   SGIFImage            = MaxExtStrID - 200;
  32.   SChangeGIFSize       = MaxExtStrID - 201;
  33.   SNoGIFData           = MaxExtStrID - 202;
  34.   SUnrecognizedGIFExt  = MaxExtStrID - 203;
  35.   SWrongGIFColors      = MaxExtStrID - 204;
  36.   SBadGIFCodeSize      = MaxExtStrID - 205;
  37.   SGIFDecodeError      = MaxExtStrID - 206;
  38.   SGIFEncodeError      = MaxExtStrID - 207;
  39.   SGIFVersion          = MaxExtStrID - 208;
  40.  
  41. implementation
  42.  
  43. {$IFDEF WIN32}
  44.  {$R *.R32}
  45. {$ELSE}
  46.  {$R *.R16}
  47. {$ENDIF}
  48.  
  49. end.